home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1993 July / Internet Tools.iso / RockRidge / info-service / gopher / Unix / NeXTtext / text / strutil.h < prev    next >
Encoding:
C/C++ Source or Header  |  1991-10-06  |  458 b   |  21 lines

  1. #ifndef _STRUTIL_H_
  2. #define _STRUTIL_H_
  3.  
  4.  
  5. /* functions for string management */
  6. extern char *strindex(char *s, char *t);
  7. extern char *strsave(char *s);
  8. extern char *strtolower(char *s);
  9. extern char *strtoupper(char *s);
  10. extern char *hasupper(char *s);
  11. extern char *haslower(char *s);
  12. extern char *singular(char *s);
  13. extern char *plural(char *s);
  14. extern char *hasdigit(char *s);
  15. extern int blank(char *s);
  16. extern translate(char *s, char a, char b);
  17.  
  18.  
  19. #endif
  20.  
  21.